home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / TinyGL / ami / content / ad709 / tinygl / src / list.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-08-15  |  310 b   |  13 lines

  1. #ifndef _list_h
  2. #define _list_h
  3.  
  4.  
  5. GLContext *gl_get_context(void);
  6. GLList *find_list(GLContext *c, unsigned int list);
  7. void delete_list(GLContext *c, int list);
  8. GLList *alloc_list(GLContext *c, int list);
  9. void gl_print_op(FILE *f, GLParam *p);
  10. void gl_compile_op(GLContext *c, GLParam *p);
  11.  
  12. #endif
  13.